.tips-list {
  max-width: 900px;
  margin: auto;
  padding: 30px 50px;
  background: rgba(255, 234, 0, 0.95); /* jaune un peu moins saturé + transparent */
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  list-style-position: outside;
  font-size: 1.1em;
  line-height: 1.7;
  color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.tips-list li {
  margin-bottom: 16px;
  padding-left: 10px;
  position: relative;
}

.tips-list li::marker {
  color: #ff6f00; /* orange simpsons */
  font-size: 1.2em;
}

.tips-list li:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-left: 4px solid #ff6f00;
  padding-left: 14px;
}

@media (max-width: 768px) {
  .tips-list {
    width: 95%;
    padding: 20px;
    font-size: 1em;
  }
}


body {
  margin: 0;
  background-image: url("../Images/background2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}